home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Zoom 2
/
Zoom - Release 2 (1996)(Active Software)[!].iso
/
programming
/
amiga
/
rexxecute
/
examples
/
paver.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1990-12-29
|
323 b
|
21 lines
/* test of REXX I/O */
trace
do j=1 to 4;
do i=1 to 6;
left = (i-1)*106
top = (j-1)*50
pos="con:"left"/"top"/106/50/"i":"j
call open w.i.j,pos,'a'
end
end j
/* write to each one ... */
do j=1 to 4;
do i=1 to 6;
call writeln w.i.j,i j
end
end j
/* bail out (automatic cleanup) */
exit